home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / OrganicCheckBoxIcon.java < prev    next >
Text File  |  1998-06-30  |  5KB  |  140 lines

  1. /*
  2.  * @(#)OrganicCheckBoxIcon.java    1.6 98/02/02
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.organic;
  22.  
  23. import com.sun.java.swing.*;
  24.  
  25. import java.awt.*;
  26. import java.awt.event.*;
  27. import com.sun.java.swing.plaf.*;
  28. import java.io.*;
  29.  
  30. /**
  31.  * CheckboxIcon implementation for OrganicCheckBoxUI
  32.  * <p>
  33.  * Warning: serialized objects of this class will not be compatible with
  34.  * future swing releases.  The current serialization support is appropriate
  35.  * for short term storage or RMI between Swing1.0 applications.  It will
  36.  * not be possible to load serialized Swing1.0 objects with future releases
  37.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  38.  * baseline for the serialized form of Swing objects.
  39.  *
  40.  * @version 1.6 02/02/98
  41.  * @author Steve Wilson
  42.  */
  43. public class OrganicCheckBoxIcon implements Icon, UIResource, Serializable {
  44.  
  45.     protected int getControlSize() { return 13; }
  46.  
  47.     protected Color getControlColor() { return OrganicLookAndFeel.getControl1(); }
  48.     protected Color getAccentColor() { return OrganicLookAndFeel.getWhite(); }
  49.     protected Color getShadowColor() { return OrganicLookAndFeel.getControl2(); }
  50.     protected Color getDarkShadowColor() { return OrganicLookAndFeel.getControl3(); }
  51.     protected Color getBlackColor() { return OrganicLookAndFeel.getBlack(); }
  52.  
  53.     /************************** The View *************************/
  54.  
  55.  
  56.     public void paintIcon(Component c, Graphics g, int x, int y) {
  57.  
  58.         JCheckBox cb = (JCheckBox)c;
  59.     ButtonModel model = cb.getModel();
  60.     int controlSize = getControlSize();
  61.  
  62.     // Set up the colors for each area
  63.     Color leftColor = getAccentColor();
  64.     Color rightColor = getShadowColor();
  65.     Color checkColor = getBlackColor();
  66.           Color frameColor = getControlColor();
  67.            Color fillColor = getControlColor();
  68.            boolean drawCheck = model.isSelected();
  69.            boolean drawCorners = !model.isEnabled();
  70.     if ( !model.isEnabled() ) {
  71.                leftColor = getShadowColor();
  72.                rightColor = getShadowColor();
  73.                checkColor = getDarkShadowColor();
  74.            }
  75.            else if ( !model.isSelected() && !model.isArmed() ) {
  76.                leftColor = getAccentColor();
  77.                rightColor = getDarkShadowColor();
  78.            }
  79.            else if ( model.isPressed() || model.isSelected() ) {
  80.                leftColor = getDarkShadowColor();
  81.                rightColor = getAccentColor();
  82.            }
  83.  
  84.            // Background
  85.            if ( model.isPressed() && model.isArmed() ) {
  86.                fillColor = getShadowColor();
  87.            }
  88.            else {
  89.                fillColor = getControlColor();
  90.            }
  91.  
  92.            g.setColor( frameColor );
  93.            g.fillRect( x-1, y-1, controlSize+2, controlSize+2 );
  94.     g.setColor( fillColor );
  95.            g.fillRect( x, y, controlSize-1, controlSize-1 );
  96.  
  97.            // left bevel
  98.            g.setColor( leftColor );
  99.            g.drawLine(x, y, x+(controlSize-2), y);
  100.            g.drawLine(x, y, x, y+(controlSize-2));
  101.         
  102.            // right bevel
  103.            g.setColor( rightColor );
  104.            g.drawLine( x+(controlSize-1), y+1, x+(controlSize-1), y+(controlSize-1) );
  105.            g.drawLine( x+(controlSize-1), y+(controlSize-1), x+1, y+(controlSize-1) );
  106.         
  107.            // Fill Corners
  108.            if ( drawCorners ) {
  109.                g.setColor( leftColor );
  110.                g.drawLine( x+(controlSize-1), y, x+(controlSize-1), y );
  111.                g.drawLine( x, y+(controlSize-1), x, y+(controlSize-1) );
  112.            }
  113.     // Check
  114.            g.setColor( checkColor );
  115.            if ( drawCheck ) {
  116.  
  117.         /*    g.fillRect( x+3, y+5, 2, 5 );
  118.             g.drawLine( x+9, y+3, x+5, y+7 );
  119.             g.drawLine( x+10, y+3, x+5, y+8 );*/
  120.         
  121.         drawCheck(c,g,x,y);
  122.     }
  123.     }
  124.  
  125.     protected void drawCheck(Component c, Graphics g, int x, int y) {
  126.     int controlSize = getControlSize();
  127.     g.fillRect( x+3, y+5, 2, controlSize-8 );
  128.     g.drawLine( x+(controlSize-4), y+3, x+5, y+(controlSize-6) );
  129.     g.drawLine( x+(controlSize-3), y+3, x+5, y+(controlSize-5) );
  130.     }
  131.  
  132.     public int getIconWidth() {
  133.         return getControlSize();
  134.     }
  135.        
  136.     public int getIconHeight() {
  137.         return getControlSize();
  138.     }
  139.  }
  140.